home *** CD-ROM | disk | FTP | other *** search
- on mouseUp
- global prev, lastFrame
- if count(movielist) > 0 then
- set Chosen to 0
- repeat with i = 1 to count(movielist)
- if getAt(selected, i) = 1 then
- set Chosen to 1
- end if
- end repeat
- if Chosen = 1 then
- set lastFrame to the frame
- repeat with i = 13 to 18
- puppetSprite(i, 1)
- set the visible of sprite i to 1
- puppetSprite(i, 0)
- end repeat
- delset()
- updateStage()
- else
- repeat with x = 13 to 18
- puppetSprite(x, 0)
- end repeat
- go("NoSel")
- end if
- else
- repeat with x = 13 to 18
- puppetSprite(x, 0)
- end repeat
- go("NoMov")
- end if
- end
-